home *** CD-ROM | disk | FTP | other *** search
- /* This is a prototype of the class interface you will write.
- Generated by dspwrap.*/
- /* Copyright (c) 1992 - Rick A. Vander Kam - All rights reserved */
-
- #import <musickit/UnitGenerator.h>
-
- @interface FracdelayUG : UnitGenerator
- {
- id memObj;
- int length;
- }
-
- /*
- * Methods for poking the unit generator's DSP memory arguments
- * once it is loaded into the DSP orchestra.
- */
- - setFIRCell:(id)aSynthData;
- - setInput:(id)aPatchPoint;
- - setOutput:(id)aPatchPoint;
- - setBb0:(double)aDouble;
- - setBb1:(double)aDouble;
- - setChg:(double)aDouble;
- - setDelayMemory:(id)aSynthData;
- - (int)getLength;
- -adjustLength:(int)newLength;
- -resetPointer;
- -setPointer:(int)offset;
-
- /*
- * Method for "turning off" a unit generator by patching all its outputs to "sink"
- */
- - idleSelf;
-
- @end